home *** CD-ROM | disk | FTP | other *** search
/ PC Format (PL) 2008 December / PC_Format_122008.iso / Multimedia / MediaPortal 0.2.3.0 / MediaPortal_0.2.3.0_Setup.exe / restart.vbs < prev    next >
Text File  |  2007-10-31  |  278b  |  14 lines

  1. Option Explicit
  2. Dim process
  3. Dim shell
  4.  
  5. For Each process in GetObject("winmgmts:").ExecQuery("select * from Win32_Process where name='MediaPortal.exe'")
  6.     process.Terminate(0)
  7. Next
  8.  
  9. WScript.Sleep 1750
  10.  
  11. set shell=createobject("WScript.Shell")
  12. shell.Run "mediaportal"
  13.  
  14.